home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Freeware 2002 November
/
SGI Freeware 2002 November - Disc 3.iso
/
dist
/
fw_qt3.idb
/
usr
/
freeware
/
Qt
/
examples
/
action
/
actiongroup
/
main.cpp.z
/
main.cpp
Wrap
C/C++ Source or Header
|
2002-04-08
|
284b
|
18 lines
/*
$Id$
*/
#include <qapplication.h>
#include "editor.h"
int main( int argc, char ** argv)
{
QApplication app( argc, argv );
Editor editor;
editor.setCaption( "Qt Example - Actiongroup" );
app.setMainWidget( &editor );
editor.show();
return app.exec();
}